home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / dev / RCS / fddi.h,v < prev    next >
Text File  |  1992-06-08  |  9KB  |  330 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     92.06.08.14.51.58;  author voelker;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     92.02.08.15.33.44;  author voelker;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @IOControl definitions for the FDDI device
  22. @
  23.  
  24.  
  25. 1.2
  26. log
  27. @fddi definitions
  28. @
  29. text
  30. @/*
  31.  * fddi.h --
  32.  *
  33.  *    Declarations for ioctls specific to the DEC FDDI device.
  34.  *
  35.  * Copyright 1992 Regents of the University of California
  36.  * Permission to use, copy, modify, and distribute this
  37.  * software and its documentation for any purpose and without
  38.  * fee is hereby granted, provided that the above copyright
  39.  * notice appear in all copies.  The University of California
  40.  * makes no representations about the suitability of this
  41.  * software for any purpose.  It is provided "as is" without
  42.  * express or implied warranty.
  43.  *
  44.  * $Header: /sprite/src/lib/include/dev/RCS/fddi.h,v 1.1 92/02/08 15:33:44 voelker Exp Locker: voelker $ SPRITE (Berkeley)
  45.  */
  46.  
  47. #ifndef _FDDI_IOC
  48. #define _FDDI_IOC
  49.  
  50. #define IOC_FDDI    (21 << 16)
  51.  
  52. /*
  53.  * Ioctl definitions specific to the FDDI device.
  54.  */
  55.  
  56. #define IOC_FDDI_RESET                 (IOC_FDDI | 0x1)
  57. #define IOC_FDDI_DEBUG                 (IOC_FDDI | 0x2)  /* Toggle debug */
  58. #define IOC_FDDI_SEND_PACKET           (IOC_FDDI | 0x3)
  59. #define IOC_FDDI_REG_CONTENTS          (IOC_FDDI | 0x4)
  60. #define IOC_FDDI_ERR_LOG               (IOC_FDDI | 0x5)
  61. #define IOC_FDDI_FLUSH_XMT_Q           (IOC_FDDI | 0x6)
  62. #define IOC_FDDI_ADDRESS               (IOC_FDDI | 0x7)
  63. #define IOC_FDDI_PRINT_DEBUG_RING      (IOC_FDDI | 0x8)
  64. #define IOC_FDDI_RPC_ECHO              (IOC_FDDI | 0x9)
  65. #define IOC_FDDI_HALT                  (IOC_FDDI | 0xA)
  66. #define IOC_FDDI_SOURCE                (IOC_FDDI | 0xB)
  67. #define IOC_FDDI_STATS                 (IOC_FDDI | 0xC)
  68.  
  69. /*
  70.  * IOC_FDDI_SEND_PACKET input parameter.
  71.  */
  72. typedef struct Dev_FDDISendPacket {
  73.     char     buffer[IOC_MAX_BYTES - sizeof(int) - sizeof(Net_Address)]; 
  74.                                         /* The data. */
  75.     int        length;            /* Length of the data. */
  76.     Net_FDDIAddress dest;
  77. } Dev_FDDISendPacket;
  78.  
  79. /*
  80.  * IOC_FDDI_REG_CONTENTS output parameter.
  81.  */
  82. typedef struct Dev_FDDIRegContents {
  83.     unsigned short regReset;
  84.     unsigned short regCtrlA;
  85.     unsigned short regCtrlB;
  86.     unsigned short regStatus;
  87.     unsigned short regEvent;
  88.     unsigned short regMask;
  89. } Dev_FDDIRegContents;
  90.  
  91. /*
  92.  * IOC_FDDI_ERR_LOG output parameter.
  93.  */
  94. typedef struct Dev_FDDIErrLog {
  95.     unsigned long internal;      /* Internal Error Code */
  96.     unsigned long external;      /* External Error Code (should match error
  97.                   * code in the STATUS register */
  98. } Dev_FDDIErrLog;
  99.  
  100. /*
  101.  * IOC_FDDI_ADDRESS output parameter.  The link address of the
  102.  * adapter.
  103.  */
  104. typedef struct Dev_FDDILinkAddr {
  105.     Net_FDDIAddress source;
  106. } Dev_FDDILinkAddr;
  107.  
  108. /*
  109.  * IOC_FDDI_RPC_ECHO input parameter.
  110.  */
  111. typedef struct Dev_FDDIRpcEcho {
  112.     unsigned long packetSize;
  113.     unsigned long numEchoes;
  114.     unsigned long serverID;
  115.     Boolean       printSyslog;
  116. } Dev_FDDIRpcEcho;
  117.  
  118. /*
  119.  * IOC_FDDI_RPC_ECHO output parameter.
  120.  */
  121. typedef struct Dev_FDDIRpcEchoReturn {
  122.     Time rpcTime;
  123. } Dev_FDDIRpcEchoReturn;
  124.  
  125. /*
  126.  * IOC_FDDI_SEND_PACKET input parameter.
  127.  */
  128. typedef struct Dev_FDDISourcePacket {
  129.     int        length;            /* Length of the data. */
  130.     Time        time;
  131.     Net_FDDIAddress dest;
  132. } Dev_FDDISourcePacket;
  133.  
  134. /*
  135.  * IOC_FDDI_STATS output structure.  It should look very similar
  136.  * to the Net_FDDIStats structure.
  137.  */
  138. typedef struct Dev_FDDIStats {
  139.     int        packetsSent;        /* Number of packets sent. */
  140.     int        bytesSent;            /* Number of bytes sent. */
  141.     int         transmitHistogram[NET_FDDI_STATS_HISTO_NUM];
  142.                                         /* Histogram of packet sizes sent */
  143.     int        packetsReceived;    /* Number of packets received. */
  144.     int        bytesReceived;        /* Number of bytes received. */
  145.     int         receiveHistogram[NET_FDDI_STATS_HISTO_NUM];
  146.                                         /* Histogram of rcved packet sizes */
  147.     int         receiveReaped[NET_FDDI_STATS_RCV_REAPED];
  148.                                         /* Number of packets reaped per
  149.                      * receive interrupt */
  150.     int         xmtPacketsDropped;      /* Packets dropped because 
  151.                      * of lack of transmit buffer space. */
  152.     int         packetsQueued;          /* Number of packets written
  153.                      * to adapter transmit buffers. */
  154. } Dev_FDDIStats;
  155.  
  156. #endif /* _FDDI_IOC */
  157.  
  158.  
  159.  
  160.  
  161.  
  162. @
  163.  
  164.  
  165. 1.1
  166. log
  167. @Initial revision
  168. @
  169. text
  170. @d2 1
  171. a2 1
  172.  * ultra.h --
  173. d4 1
  174. a4 1
  175.  *    Declarations for ioctls specific to the Ultranet VME adapter.
  176. d6 1
  177. a6 1
  178.  * Copyright 1990 Regents of the University of California
  179. d15 1
  180. a15 1
  181.  * $Header: /sprite/src/lib/include/dev/RCS/ultra.h,v 1.4 90/10/19 15:51:49 jhh Exp $ SPRITE (Berkeley)
  182. d18 78
  183. a95 38
  184. #ifndef _ULTRA
  185. #define _ULTRA
  186.  
  187. #define IOC_ULTRA    (14 << 16)
  188.  
  189. /*
  190.  * Ioctl definitions specific to the Ultranet device.
  191.  */
  192.  
  193. #define IOC_ULTRA_SET_FLAGS        (IOC_ULTRA | 0x1)
  194. #define IOC_ULTRA_RESET_FLAGS        (IOC_ULTRA | 0x2)
  195. #define IOC_ULTRA_GET_FLAGS        (IOC_ULTRA | 0x3)
  196. #define IOC_ULTRA_RESET            (IOC_ULTRA | 0x4)
  197. #define IOC_ULTRA_CLR            (IOC_ULTRA | 0x5)
  198. #define IOC_ULTRA_INT            (IOC_ULTRA | 0x6)
  199. #define IOC_ULTRA_WFI            (IOC_ULTRA | 0x7)
  200. #define IOC_ULTRA_LOAD            (IOC_ULTRA | 0x8)
  201. #define IOC_ULTRA_GO            (IOC_ULTRA | 0x9)
  202. #define IOC_ULTRA_EXTENDED_DIAG        (IOC_ULTRA | 0xa)
  203. #define IOC_ULTRA_DIAG            (IOC_ULTRA | 0xb)
  204. #define IOC_ULTRA_DUMP            (IOC_ULTRA | 0xc)
  205. #define IOC_ULTRA_GET_ADAP_INFO        (IOC_ULTRA | 0xd)
  206. #define IOC_ULTRA_DEBUG            (IOC_ULTRA | 0xe)
  207. #define IOC_ULTRA_INIT            (IOC_ULTRA | 0xf)
  208. #define IOC_ULTRA_START            (IOC_ULTRA | 0x10)
  209. #define IOC_ULTRA_ADDRESS        (IOC_ULTRA | 0x11)
  210. #define IOC_ULTRA_SEND_DGRAM        (IOC_ULTRA | 0x12)
  211. #define IOC_ULTRA_ECHO            (IOC_ULTRA | 0x13)
  212. #define IOC_ULTRA_TRACE            (IOC_ULTRA | 0x14)
  213. #define IOC_ULTRA_SOURCE        (IOC_ULTRA | 0x15)
  214. #define IOC_ULTRA_SINK            (IOC_ULTRA | 0x16)
  215. #define IOC_ULTRA_COLLECT_STATS        (IOC_ULTRA | 0x17)
  216. #define IOC_ULTRA_CLEAR_STATS        (IOC_ULTRA | 0x18)
  217. #define IOC_ULTRA_GET_STATS        (IOC_ULTRA | 0x19)
  218. #define IOC_ULTRA_MAP_THRESHOLD        (IOC_ULTRA | 0x1a)
  219. #define IOC_ULTRA_BCOPY_TEST        (IOC_ULTRA | 0x1b)
  220. #define IOC_ULTRA_SG_BCOPY_TEST        (IOC_ULTRA | 0x1c)
  221. #define IOC_ULTRA_HARD_RESET        (IOC_ULTRA | 0x1d)
  222. d97 1
  223. a97 1
  224.  * IOC_ULTRA_LOAD_BLOCK parameter.
  225. d99 1
  226. a99 2
  227.  
  228. typedef struct Dev_UltraLoadBlock {
  229. d101 3
  230. a103 3
  231.     int     address;            /* Load address. */
  232.     char     buffer[IOC_MAX_BYTES - 2 * sizeof(int)]; /* The data. */
  233. } Dev_UltraLoadBlock;
  234. d106 25
  235. a130 91
  236.  * IOC_ULTRA_GO parameter. 
  237.  */
  238.  
  239. typedef struct Dev_UltraGo {
  240.     int        address;        /* Starting address. */
  241. } Dev_UltraGo;
  242.  
  243. /* 
  244.  * IOC_ULTRA_DIAG parameter.
  245.  */
  246.  
  247. typedef struct Dev_UltraDiag {
  248.     int        version;        /* Firmware version. */
  249.     int        error;            /* 0 if tests passed, otherwise
  250.                      * the number of the test that
  251.                      * failed. */
  252.     int        hwModel;        /* Hardware model. */
  253.     int        hwVersion;        /* Hardware version. */
  254.     int        hwRevision;        /* Hardware revision. */
  255.     int        hwOption;        /* Hardware option. */
  256.     int        hwSerial;        /* Hardware serial number. */
  257. } Dev_UltraDiag;
  258.  
  259. /*
  260.  * IOC_ULTRA_GET_ADAP_INFO parameter. This is the same as IOC_ULTRA_DIAG,
  261.  * except that the 'error' field isn't used because diagnostics aren't
  262.  * run.
  263.  */
  264.  
  265. typedef Dev_UltraDiag Dev_UltraAdapterInfo;
  266.  
  267. /*
  268.  * IOC_ULTRA_EXTENDED_DIAG parameter.
  269.  */
  270.  
  271. typedef struct Dev_UltraExtendedDiag {
  272.     int        version;        /* Firmware version. */
  273.     int        error;            /* 0 if tests passed, otherwise
  274.                      * the number of the test that
  275.                      * failed. */
  276.     Boolean    externalLoopback;    /* TRUE => use external loopback
  277.                      * (there had better be a loopback
  278.                      * connector attached to the
  279.                      * adapter!) */
  280. } Dev_UltraExtendedDiag;
  281.  
  282. /*
  283.  * IOC_ULTRA_LOAD parameter.
  284.  */
  285.  
  286. typedef struct Dev_UltraLoad {
  287.     int        address;    /* Load address. */
  288.     int        length;        /* Length of the block. */
  289.     char    data[IOC_MAX_BYTES - 2 * sizeof(int)];    /* The block to load. */
  290. } Dev_UltraLoad;
  291.  
  292. /*
  293.  * IOC_ULTRA_SEND_DGRAM parameter.
  294.  */
  295.  
  296. typedef struct Dev_UltraSendDgram {
  297.     Net_Address        address;
  298.     int            count;
  299.     Time        time;
  300.     int            size;
  301.     Boolean        useBuffer;
  302.     char        buffer[100];
  303. } Dev_UltraSendDgram;
  304.  
  305. /*
  306.  * IOC_ULTRA_ECHO parameter.
  307.  */
  308.  
  309. typedef struct Dev_UltraEcho {
  310.     Boolean        echo;    /* TRUE => echo received datagrams back
  311.                  * to sender. */
  312. } Dev_UltraEcho;
  313.  
  314. typedef struct Dev_UltraSink {
  315.     int        packets;
  316.     Time    time;
  317. } Dev_UltraSink;
  318.  
  319. typedef struct Dev_UltraStats {
  320.     int        packetsSent;
  321.     int        bytesSent;
  322.     int        sentHistogram[33];
  323.     int        packetsReceived;
  324.     int        bytesReceived;
  325.     int        receivedHistogram[33];
  326. } Dev_UltraStats;    
  327. a131 1
  328. #endif /* _ULTRA */
  329. @
  330.